feat: Use types generated from Supabase#27
Merged
Conversation
There was a problem hiding this comment.
Pull Request Overview
This PR introduces type safety by implementing auto-generated TypeScript types from Supabase, replacing manually defined interfaces with centralized database schema types.
- Adds comprehensive Supabase-generated types for all database tables, views, enums, and functions
- Creates a models.ts file to export convenient type aliases for application use
- Replaces manual interface definitions with imported types from the generated schema
Reviewed Changes
Copilot reviewed 11 out of 11 changed files in this pull request and generated 3 comments.
Show a summary per file
| File | Description |
|---|---|
| src/shared/types/supabase.ts | Adds complete auto-generated Supabase database schema types |
| src/shared/types/models.ts | Creates convenient type aliases for commonly used database entities |
| src/models/equipment.ts | Removes manually defined Equipment interface |
| src/interventions/pages/edit.tsx | Updates to use UpdateIntervention type from generated schema |
| src/equipments/pages/show.tsx | Renames component import for better naming consistency |
| src/equipments/pages/list.tsx | Updates Equipment import to use generated types |
| src/equipments/pages/edit.tsx | Updates to use UpdateEquipment type from generated schema |
| src/equipments/pages/add.tsx | Updates to use InsertEquipment type from generated schema |
| src/equipments/components/equipment-attachment-list.tsx | Updates to use EquipmentAttachment type and renames component |
| src/equipments/components/equipment-actions-menu.tsx | Updates Equipment import to use generated types |
| src/boats/components/access-list.tsx | Updates to use Access type from generated schema |
73fbb30 to
f0b8237
Compare
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
No description provided.